Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
compress-commons
Advanced tools
a library that defines a common interface for working with archive formats within node
The compress-commons npm package is a library that provides a set of reusable classes and functions for creating and extracting archive files. It supports various archive formats, making it a versatile tool for handling compression and decompression tasks in Node.js applications.
Creating Archive Files
This feature allows you to create archive files. The code sample demonstrates how to create a TAR archive containing a single file with the content 'Hello World!'.
const fs = require('fs');
const tar = require('compress-commons').tar;
const output = fs.createWriteStream('archive.tar');
const archive = tar.createArchiveStream();
output.on('close', function() {
console.log('Archive has been finalized.');
});
archive.pipe(output);
archive.entry('file.txt', 'Hello World!', function(err) {
if (err) throw err;
archive.finish();
});
Extracting Archive Files
This feature enables the extraction of archive files. The provided code sample shows how to extract files from a TAR archive, handling each entry and completing the process.
const fs = require('fs');
const tar = require('compress-commons').tar;
const input = fs.createReadStream('archive.tar');
const archive = tar.extractArchiveStream();
input.pipe(archive);
archive.on('entry', function(header, stream, next) {
stream.on('end', next);
stream.resume();
});
archive.on('finish', function() {
console.log('Extraction complete.');
});
Archiver is a popular npm package for file archiving. It supports creating and streaming archives in formats like ZIP and TAR. Compared to compress-commons, Archiver offers a high-level API that might be easier to use for common archiving tasks.
extract-zip is focused solely on extracting ZIP files. It provides a simpler interface for this specific task, making it less versatile but potentially more straightforward to use for ZIP extraction compared to the broader scope of compress-commons.
yauzl is another npm package for reading and extracting ZIP files. It offers a low-level interface for ZIP file manipulation, providing more control but requiring more code for common tasks compared to compress-commons, which offers a more balanced approach between ease of use and control.
Compress Commons is a library that defines a common interface for working with archive formats within node.
npm install compress-commons --save
You can also use npm install https://github.com/archiverjs/node-compress-commons/archive/master.tar.gz
to test upcoming versions.
Concept inspired by Apache Commons Compress™.
Some logic derived from Apache Commons Compress™ and OpenJDK 7.
FAQs
a library that defines a common interface for working with archive formats within node
The npm package compress-commons receives a total of 6,157,569 weekly downloads. As such, compress-commons popularity was classified as popular.
We found that compress-commons demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.